Package-level declarations

Types

Link copied to clipboard
data class Alert(val id: String, val acceptedBy: Contact? = null, val from: Contact?, val payload: String, val resolvedAt: Date? = null, val createdAt: Date, val title: String, val cancelled: Boolean)
Link copied to clipboard
data class AlertContainer(val active: List<Alert>, val accepted: List<Alert>, val expired: List<Alert>, val cancelled: List<Alert>)
Link copied to clipboard
data class AlertTemplate(val templateId: String, val title: String, val payload: String, val timeToExpire: Date, val numberOfRetries: Int, val timeInMsBetweenRetries: Date)